Skip to main content
Plugins / Is It Up Yet

Is It Up Yet

by dvjn

Plugin to check for a service to start listening on a specified host and port.


Woodpecker CI plugin to check for a service to start listening on a specified host and port.

It continuously polls the configured host and port using netcat until the service starts.

Settings

Name Default Description
host none Host for the service
port none Port for the service

Example

Using a detached step:

steps:
  - name: server
    detach: true
    image: ...

  - name: wait_for_server
    image: ghcr.io/dvjn/woodpecker-is-it-up-yet-plugin
    settings:
      host: server
      port: 8080

Using a service:

steps:
  - name: wait_for_server
    image: ghcr.io/dvjn/woodpecker-is-it-up-yet-plugin
    settings:
      host: server
      port: 8080

service:
  - name: server
    image: ...